home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / ScrollDoodScroll / StubView.h < prev    next >
Text File  |  1992-04-03  |  376b  |  18 lines

  1. // StubView.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7.  
  8. #import <appkit/View.h>
  9.  
  10. @interface StubView:View
  11. {
  12. }
  13.  
  14. /* instance methods */
  15. - drawSelf:(const NXRect *)rects :(int)count;
  16.  
  17. @end
  18.